.spotlight-article {
    position: relative;
    width: 100%; /* Use 100% for responsiveness */
    max-width: 1720px; /* Limit max width if desired */
    height: 800px; /* Adjust height as needed */
    display: flex;
    align-items: flex-end; /* Push content to the bottom */
    margin: 0 auto; /* Center the article */
    border-radius: 20px; /* Apply border radius */
    overflow: hidden; /* Prevent content from overflowing out of the border radius */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotlight-article:hover {
    transform: scale(1.02); /* Slightly enlarge the container */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Add a subtle shadow on hover */
}

.spotlight-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire area */
    z-index: 0;
    border-radius: 20px; /* Apply the same border radius to the image */
}

.spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #17213B, rgba(23, 33, 59, 0)); /* Gradient */
    z-index: 1;
    border-radius: 20px; /* Apply the same border radius to the overlay */
}

.spotlight-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
    max-width: 100%; /* Adjust as needed */
    text-align: left;
    font-weight: 700;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 5% ;
}

.spotlight-content h1 {
    font-size: 2.8rem; /* Adjust font size */
    margin-bottom: 10px;
    font-weight: bold;
}

.spotlight-content p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #9499b4;
}

.read-post-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4170FF; /* Button color */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.read-post-btn:hover {
    background-color: #355bb2; /* Darker on hover */
}

/* Spotlight Article Styles */
.spotlight-article {
    position: relative;
    width: 100%; /* Use 100% for responsiveness */
    max-width: 1720px; /* Limit max width if desired */
    height: 800px; /* Adjust height as needed */
    display: flex;
    align-items: flex-end; /* Push content to the bottom */
    margin: 0 auto; /* Center the article */
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s; /* Transition for hover effect */
}

.spotlight-image {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire area */
    z-index: 0;
}

.spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #17213B, rgba(23, 33, 59, 0)); /* Gradient */
    z-index: 1;
}

.spotlight-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
    max-width: 100%; /* Adjust as needed */
    text-align: left;
    font-weight: 700;
    padding-left: 10%;
    padding-right: 10%;
    margin-bottom: 5%;
}

.spotlight-content h1 {
    font-size: 2.5rem; /* Adjust font size */
    margin-bottom: 10px;
}

.spotlight-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #9499b4;
}

.read-post-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4170FF; /* Button color */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.read-post-btn:hover {
    background-color: #355bb2; /* Darker on hover */
}





.latest-news {
    padding: 20px;
    text-align: left; /* Align all text to the left */
    margin-top: 5%;
    margin-left: 5%;
    margin-right: 5%;
}

.custom-heading {
    font-size: 2rem; /* Customize font size */
    color: #ffffff; /* Customize color */
    margin-bottom: 20px; /* Space below the heading */
    font-weight: bold;
    margin-bottom: 5%;
}

.news-grid {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%; /* Custom widths for each column */
    gap: 20px; /* Space between grid items */
    max-width: auto; /* Limit max width */
}

.news-item {
    width: 100%; /* Let the item take full width of the column */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden; /* Hide overflow */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transform and shadow on hover */
    text-align: left; /* Ensure text inside is aligned to the left */
}

.news-item:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}

.news-item img {
    width: 100%; /* Make image fill the item */
    height: auto; /* Maintain aspect ratio */
    border-radius: 20px;
}

.news-info {
    display: flex;
    align-items: center; /* Center items vertically */
    margin-top: 5%;
    margin-bottom: 5%;
}

.news-logo {
    width: auto; /* Adjust logo size */
    height: auto; /* Maintain aspect ratio */
    max-width: 30px; /* Ensure it doesn't exceed parent container */
    max-height: 30px; /* Set max height to keep it proportionate */
    margin-right: 10px; /* Space between logo and date */
    margin-left: 0;
}

.news-date {
    color: #999; /* Color for the date */
    font-size: 1.0rem; /* Adjust font size for the date */
    text-align: right;
    font-weight: bold;
}

.news-item h3 {
    font-size: 1.5rem; /* Title size */
    color: #ffffff;
    font-weight: bold;
}

.news-item p {
    color: #666; /* Description color */
    font-weight: bold;
    margin-top: 5%;
}

.news-item a {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit color from parent */
}

@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Responsive adjustment */
    }
}

.podcast-section {
    padding: 20px; /* Add padding around the section */
    text-align: left; /* Align text to the left */
    margin: 20px 0; /* Space around the section */
    border-radius: 12px; /* Rounded corners for the section */
    margin-left: 5%;
    margin-right: 5%;
}

.podcast-section h2 {
    font-size: 2rem; /* Customize font size */
    color: #ffffff; /* Customize color */
    margin-bottom: 20px; /* Space below the heading */
    font-weight: bold;
}

.text-center{
    margin-bottom: 10%;
    margin-top: 10%;
}

.news-article-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
}

.news-article-image {
    width: 100%;
    height: 25%;
    display: block;
}

.news-article-box {
    background-color: #17213B;
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.news-article-title {
    margin-bottom: 5%;
    font-weight: bold;
}

.news-article-content {
    font-size: 20px;
    margin-top: 5%;
    line-height: 1.6;
    color:#9499B4;
} 

#t1{
    font-size: 25px;
    color: #ffffff;
}

#t2{
    color: #ffffff;
}

#a1-1 {
    display: block;
    margin: 0 auto; /* This centers the image */
    max-width: 100%; /* Ensures the image scales responsively */
    height: auto; /* Maintains the aspect ratio */
    width: 700px; /* Set a specific width, adjust this as needed */
    image-rendering: -webkit-optimize-contrast; /* WebKit-specific for better contrast */
    image-rendering: crisp-edges; /* Fallback for older browsers */
}

#a2-3 {
    display: block;
    margin: 0 auto; /* This centers the image */
    max-width: 100%; /* Ensures the image scales responsively */
    height: auto; /* Maintains the aspect ratio */
    width: 1000px; /* Set a specific width, adjust this as needed */
}

#peas {
    width: 100%; /* Make image fill the item */
    height: 49%; /* Maintain aspect ratio */
}